Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remark-lint-ordered-list-marker-style

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint-ordered-list-marker-style

remark-lint rule to warn when the markers of ordered lists violate a given style

  • 3.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
91K
decreased by-45.05%
Maintainers
2
Weekly downloads
 
Created

What is remark-lint-ordered-list-marker-style?

The remark-lint-ordered-list-marker-style package is a plugin for remark-lint that enforces a consistent marker style for ordered lists in Markdown files. It helps maintain a uniform style by ensuring that ordered lists use either a period (.) or a parenthesis ()) after the list marker.

What are remark-lint-ordered-list-marker-style's main functionalities?

Enforce period marker style

This configuration enforces the use of a period (.) after the list marker in ordered lists. For example, '1. Item' instead of '1) Item'.

module.exports = {
  plugins: [
    ['remark-lint-ordered-list-marker-style', 'period']
  ]
};

Enforce parenthesis marker style

This configuration enforces the use of a parenthesis ()) after the list marker in ordered lists. For example, '1) Item' instead of '1. Item'.

module.exports = {
  plugins: [
    ['remark-lint-ordered-list-marker-style', 'parenthesis']
  ]
};

Other packages similar to remark-lint-ordered-list-marker-style

Keywords

FAQs

Package last updated on 16 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc